home *** CD-ROM | disk | FTP | other *** search
/ Final Fantasy the Spirits Within Cardz / Final Fantasy the Spirits Within CD Cardz - Disc 1: Aki Ross.iso / pc / assets / aki-puzzle.dcr / 00059_playpuzzle.ls < prev    next >
Encoding:
Text File  |  2001-07-21  |  472 b   |  28 lines

  1. on mouseEnter
  2.   set the blend of sprite 19 to 100
  3.   cursor(280)
  4. end
  5.  
  6. on mouseLeave
  7.   set the blend of sprite 19 to 70
  8.   cursor(-1)
  9. end
  10.  
  11. on mouseUp
  12.   puppetSound("Clicker", 1)
  13.   i = 31
  14.   repeat while i <= 45
  15.     sprite(i).visible = 1
  16.     i = 1 + i
  17.   end repeat
  18.   j = 47
  19.   repeat while j <= 48
  20.     sprite(j).visible = 0
  21.     j = 1 + j
  22.   end repeat
  23.   set the locH of sprite 47 to -500
  24.   set the locH of sprite 26 to 282
  25.   set the locH of sprite 19 to -500
  26.   updateStage()
  27. end
  28.